SECOND
Returns the second, a number from 0 to 59.
Syntax
expression.SECOND(arg1);
expression
- A variable that represents a ApiWorksheetFunction class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
arg1 | Required | ApiRange | ApiName | number |
Returns
number
Example
const oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
var ans = oFunction.SECOND("16:39:35");
oWorksheet.GetRange("C1").SetValue(ans);